projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7346a40
)
(ibuffer-confirm-operation-on): Correction to error
author
Kevin Ryde
<user42@zip.com.au>
Sun, 18 Oct 2009 23:11:14 +0000
(23:11 +0000)
committer
Kevin Ryde
<user42@zip.com.au>
Sun, 18 Oct 2009 23:11:14 +0000
(23:11 +0000)
re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
lisp/ibuffer.el
patch
|
blob
|
history
diff --git
a/lisp/ibuffer.el
b/lisp/ibuffer.el
index 13085f646d3ba8ebd5180413e29724a53d47df99..e8a044d2d240e966e7e598ccc07dc3aa9589e86a 100644
(file)
--- a/
lisp/ibuffer.el
+++ b/
lisp/ibuffer.el
@@
-1191,7
+1191,7
@@
a new window in the current frame, splitting vertically."
;; This definitely falls in the
;; ghetto hack category...
(not (string-match "too small" (cadr err)))))
- (
apply #'signal err
)
+ (
signal (car err) (cdr err)
)
(enlarge-window 3))))))
(select-window (next-window))
(switch-to-buffer buf)